home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / os2 / pmaud11.zip / PMAUD.MAK < prev    next >
Text File  |  1996-04-05  |  505b  |  18 lines

  1. ############################
  2. # PMAUD/audt v1.1 makefile #
  3. #                          #
  4. #   --by ryan c. gordon.   #
  5. ############################
  6.  
  7. all : pmaud.exe audt.exe
  8.  
  9. audt.exe : mciplay.c mciplay.h audt.c audt.def pmaud.rc
  10.     gcc audt.c mciplay.c audt.def -Zomf -Zmtd -O2 -s -los2me -o audt.exe
  11.     rc pmaud.rc audt.exe
  12.  
  13. pmaud.exe : mciplay.c mciplay.h pmaud.c pmaud.def pmaud.rc
  14.     gcc pmaud.c mciplay.c pmaud.def -Zomf -Zmtd -Zmt -O2 -s -los2me
  15.     rc pmaud.rc pmaud.exe
  16.  
  17. # end of PMAUD.MAK
  18.